home *** CD-ROM | disk | FTP | other *** search
/ Mesolore / Mesolore - Disc 2.iso / mac / data / Nuttall.dir / 00027_Script_27 < prev    next >
Text File  |  2001-01-30  |  699b  |  29 lines

  1. on mouseUp
  2.   cursor 4
  3.   tempList = [14,15,16,17,18,"19a","19b",20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35]
  4.   mLeft = the left of sprite 2
  5.   x = float(the mouseH - mLeft)
  6.   y = 23 - integer(x/26)
  7.   z= tempList[y]
  8.   goto "n" & z & ",0"
  9.   setTextRow
  10.   cursor 0
  11. end
  12.  
  13. on mousewithin
  14.   set the loc of sprite 8 = the mouseLoc + [-27,20]
  15.   tempList = [14,15,16,17,18,"19a","19b",20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35]
  16.   mLeft = the left of sprite 2
  17.   x = float(the mouseH - mLeft)
  18.   y = 23 - integer(x/26)
  19.   z= tempList[y]
  20.   put "Page " & z into field "PageNum"
  21. end
  22.  
  23. on mouseenter
  24.   cursor [44,45]
  25. end
  26. on mouseleave
  27.   cursor 0
  28.   set the locH of sprite 8 = -500
  29. end